home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
EnigmA Amiga Run 1997 May
/
EnigmA AMIGA RUN 18 (1997)(G.R. Edizioni)(IT)[!][issue 1997-05][EAR-CD II].iso
/
earcd
/
misc
/
emu
/
arosdev.lha
/
AROS
/
rom
/
devs
/
rawkeyconvert.c
< prev
Wrap
C/C++ Source or Header
|
1997-01-27
|
1KB
|
63 lines
/*
(C) 1995-96 AROS - The Amiga Replacement OS
$Id: rawkeyconvert.c,v 1.6 1997/01/27 00:39:37 ldp Exp $
Desc: console.device function RawKeyConvert()
Lang: english
*/
#include <exec/libraries.h>
#include <devices/inputevent.h>
#include <devices/keymap.h>
#include <proto/console.h>
extern LONG intui_RawKeyConvert (struct InputEvent *, STRPTR, LONG,
struct KeyMap *);
/*****************************************************************************
NAME */
#include <devices/inputevent.h>
#include <devices/keymap.h>
#include <proto/console.h>
AROS_LH4(LONG, RawKeyConvert,
/* SYNOPSIS */
AROS_LHA(struct InputEvent *, events, A0),
AROS_LHA(STRPTR , buffer, A1),
AROS_LHA(LONG , length, D1),
AROS_LHA(struct KeyMap *, keyMap, A2),
/* LOCATION */
struct Library *, ConsoleDevice, 8, Console)
/* FUNCTION
INPUTS
RESULT
NOTES
EXAMPLE
BUGS
SEE ALSO
INTERNALS
HISTORY
29-10-95 digulla automatically created from
*****************************************************************************/
{
AROS_LIBFUNC_INIT
AROS_LIBBASE_EXT_DECL(struct Library *,ConsoleDevice)
return intui_RawKeyConvert (events, buffer, length, keyMap);
AROS_LIBFUNC_EXIT
} /* RawKeyConvert */